home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xhexagons / Hexagons.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  75 lines

  1. /*
  2. # X-BASED HEXAGONS
  3. #
  4. #  Hexagons.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Hexagons */
  27.  
  28. #ifndef _XtHexagons_h
  29. #define _XtHexagons_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Hexagons Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNsize "size"
  39. #define XtNcorners "corners"
  40. #define XtNbase "base"
  41. #define XtNpractice "practice"
  42. #define XtNstart "start"
  43. #define XtNtileColor "tileColor"
  44. #define XtNtileBorder "tileBorder"
  45. #define XtCSize "Size"
  46. #define XtCCorners "Corners"
  47. #define XtCBase "Base"
  48. #define HEXAGONS_RESTORE (-5)
  49. #define HEXAGONS_RESET (-4)
  50. #define HEXAGONS_BLOCKED (-3)
  51. #define HEXAGONS_SPACE (-2)
  52. #define HEXAGONS_IGNORE (-1)
  53. #define HEXAGONS_MOVED 0
  54. #define HEXAGONS_SOLVED 1
  55. #define HEXAGONS_PRACTICE 2
  56. #define HEXAGONS_RANDOMIZE 3
  57. #define HEXAGONS_DEC 4
  58. #define HEXAGONS_INC 5
  59. #define HEXAGONS_CORNERS 6
  60. #define HEXAGONS_COMPUTED 7
  61. #define HEXAGONS_UNDO 8
  62.  
  63. typedef struct _HexagonsClassRec *HexagonsWidgetClass;
  64. typedef struct _HexagonsRec *HexagonsWidget;
  65.  
  66. extern WidgetClass hexagonsWidgetClass;
  67.  
  68. typedef struct {
  69.   XEvent *event;
  70.   int reason;
  71. } hexagonsCallbackStruct;
  72.  
  73. #endif _XtHexagons_h
  74. /* DON'T ADD STUFF AFTER THIS #endif */
  75.